home *** CD-ROM | disk | FTP | other *** search
- Public Class TextBoxExForm
- Inherits System.Windows.Forms.Form
-
- #Region " Windows Form Designer generated code "
-
- Public Sub New()
- MyBase.New()
-
- 'This call is required by the Windows Form Designer.
- InitializeComponent()
-
- 'Add any initialization after the InitializeComponent() call
-
- End Sub
-
- 'Form overrides dispose to clean up the component list.
- Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
- If disposing Then
- If Not (components Is Nothing) Then
- components.Dispose()
- End If
- End If
- MyBase.Dispose(disposing)
- End Sub
-
- Friend WithEvents TextBoxEx1 As CustomControlDemo.TextBoxEx
- Friend WithEvents FileTextBox1 As CustomControlDemo.FileTextBox
- Friend WithEvents lblStatus As System.Windows.Forms.Label
-
- 'Required by the Windows Form Designer
- Private components As System.ComponentModel.Container
-
- 'NOTE: The following procedure is required by the Windows Form Designer
- 'It can be modified using the Windows Form Designer.
- 'Do not modify it using the code editor.
- <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
- Me.TextBoxEx1 = New CustomControlDemo.TextBoxEx()
- Me.lblStatus = New System.Windows.Forms.Label()
- Me.FileTextBox1 = New CustomControlDemo.FileTextBox()
- Me.SuspendLayout()
- '
- 'TextBoxEx1
- '
- Me.TextBoxEx1.DisplayControl = Me.lblStatus
- Me.TextBoxEx1.ErrorMessage = Nothing
- Me.TextBoxEx1.IsRequired = False
- Me.TextBoxEx1.Location = New System.Drawing.Point(32, 32)
- Me.TextBoxEx1.Name = "TextBoxEx1"
- Me.TextBoxEx1.Size = New System.Drawing.Size(120, 24)
- Me.TextBoxEx1.TabIndex = 0
- Me.TextBoxEx1.Text = "TextBoxEx1"
- Me.TextBoxEx1.ValidateRegex = Nothing
- Me.TextBoxEx1.ValidType = CustomControlDemo.TextBoxEx.ValidTypes.Any
- '
- 'lblStatus
- '
- Me.lblStatus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.lblStatus.Dock = System.Windows.Forms.DockStyle.Bottom
- Me.lblStatus.Location = New System.Drawing.Point(0, 249)
- Me.lblStatus.Name = "lblStatus"
- Me.lblStatus.Size = New System.Drawing.Size(292, 24)
- Me.lblStatus.TabIndex = 2
- '
- 'FileTextBox1
- '
- Me.FileTextBox1.Filename = ""
- Me.FileTextBox1.Filter = "All Files (*.*)|*.*"
- Me.FileTextBox1.FilterIndex = 1
- Me.FileTextBox1.ForeColor = System.Drawing.SystemColors.WindowText
- Me.FileTextBox1.Location = New System.Drawing.Point(32, 112)
- Me.FileTextBox1.Name = "FileTextBox1"
- Me.FileTextBox1.Size = New System.Drawing.Size(200, 24)
- Me.FileTextBox1.TabIndex = 1
- '
- 'TextBoxExForm
- '
- Me.AutoScaleBaseSize = New System.Drawing.Size(7, 17)
- Me.ClientSize = New System.Drawing.Size(292, 273)
- Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.lblStatus, Me.FileTextBox1, Me.TextBoxEx1})
- Me.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Name = "TextBoxExForm"
- Me.Text = "TextBoxExForm"
- Me.ResumeLayout(False)
-
- End Sub
-
- #End Region
-
- End Class
-